home *** CD-ROM | disk | FTP | other *** search
/ Software 2000 / Software 2000 Volume 1 (Disc 1 of 2).iso / education / e035.dms / e035.adf / notation < prev    next >
Text File  |  1978-09-11  |  1KB  |  42 lines

  1.     NOTATION
  2. The chess notation used to store the games in CHESSLIBRARY is a form of long
  3. algebraic. 
  4.  
  5. All chess moves can be represented by the name of the starting square of the
  6. moving piece and the end square of the moving move.
  7.  
  8. The 8 files(vertical columns) of a chessboard are named a-h. The first file
  9. is a, the second is b etc. Files are named from the left.
  10.  
  11. The 8 ranks(horizontal rows) are named 1-8. Ranks are always numbered from
  12. white's end of the board.
  13.  
  14. A square is referred to by its file then its rank.
  15.  
  16. Hence a move involving a piece moving from c3 to d5 could be shown as c3d5.
  17.  
  18. Most chess moves in this program are stored in this manner. e.g
  19. e2e4 or g1f3
  20. (Letter,number,letter,number).
  21.  
  22. The initial letter of the piece is not stored as is generally the case in
  23. algebraic notation.
  24.  
  25. There are some moves which are not 4 digits. These include special moves
  26. such as:
  27.              King-side  Castling 0-0
  28.              Queen-side Castling 000
  29.  
  30. Each of these is followed by a space.
  31.  
  32. Promotion
  33.  
  34. En passant
  35.  
  36. All openings in this program are stored as straight ASCII files. Hence
  37. they can be edited with any text editor.
  38.  
  39. Each variation is stored as a row with no spaces between the moves.
  40.  e.g.
  41. f2f3e7e5g2g4d8h4,- 
  42.